home *** CD-ROM | disk | FTP | other *** search
- #ifndef VIEWPERSTRANS_H
- #define VIEWPERSTRANS_H
-
- #define MAXPOLYINVIEW 2000 /* Change along with constants in database.c */
-
- #ifndef GRAPHICS_VIEW_H
-
- struct View {
- FLOAT x,y,z,phi,theta,ro,d,f;
- };
-
- #endif
-
- UBYTE openviewperstrans(void);
- struct View *allocateview(void);
- void configureview(struct View *);
- void transformvert(void);
- void releaseview(struct View *);
- void closeviewperstrans(void);
-
- #endif
-